blob: 2ca887011f83233ab2113a0eac1fec6fadc54412 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { View, Text } from "react-native";
export default function Bookmark() {
return (
<View className="flex-1 items-center justify-center gap-4">
<Text className="text-4xl">Hoarded!</Text>
</View>
);
}
|